Skip to main content
This forum is closed to new posts and responses. Individual names altered for privacy purposes. The information contained in this website is provided for informational purposes only and should not be construed as a forum for customer support requests. Any customer support requests should be directed to the official HCL customer support channels below:

HCL Software Customer Support Portal for U.S. Federal Government clients
HCL Software Customer Support Portal

Notes/Domino 6 and 7 Forum

Notes/Domino 6 and 7 Forum


  



~Alexis Zenfoosterings 29.Dec.03 08:17 PM Lotus Notes
Applications Development 6.5 Windows 2000


These are the steps to reproduce what appears to be a bug in NotesDXLImporter. I am including the raw DXL of my example database, or you can plough through the steps to reproduce (<15 minutes). I can't find any reference to this being a documented bug, so here's hoping it isn't.

My application creates for each user a rich text field field of doclinks, representing all the documents they have visited in chronological order. These are text links (no chiclet icon). I refer to this rich text as the user's history document. Each time I update the user's history I remove the existing rich text item and create a new one, calling .appenddoclink for each doc they have visited. To get rid of the foul green doclink border, as a last step I run the document through the NotesDXLExporter, setting the showborder attribute to false.

This works very well for about 50 repetitions. But then it fails, producing a "DXL import operation failed" messagebox. Oddly, the problem disappears temporarily if you edit & save the document containing the links.

To reproduce this problem, set up the following forms & views:

"Data" form

1. Create a form called Data
2. Add a text field called Data.
3. Create several Data documents.
4. Create a "Data" view.

"Profile" form

1. Create a form called Profile
2. Add a Names field called Username, default value @UserName
3. Create a view called "Profiles", sort this view by Username.

"RTHistory" form

1. Create a form called RTHistory.
2. Copy the Username field from the Profile form to this form.
3. Add a rich text field named "History".
4. Create a view named "RTHistories", sorted by Username.

ReplacesubString script library

1. Add the following script to a script library named "ReplaceSubString"
Hide details for ReplaceSubString script libraryReplaceSubString script library
Function ReplaceSubString(fullString As String, oldString As String, newString As String) As String
Dim lenoldstring As Integer
Dim position As Integer

lenOldstring = Len(oldString)
position = Instr(fullString, oldString)
Do While position > 0 And oldString <> ""
fullString = Left(fullString, position-1) & newString & Mid(fullString, position + lenOldString)
position = Instr(position + Len(newString), fullString, oldString)
Loop
ReplaceSubString=fullString
End Function


2. Add "Use ReplaceSubString" to the Options event of the Data form


Data form QueryClose

Add the following script to the Data form's QueryClose event:
Hide details for Data form QueryClose eventData form QueryClose event
' ***********************************************************************************
' Add this document-visit to the user's profile.
' ***********************************************************************************
Dim s As NotesSession
Dim db As NotesDatabase
Dim profiles As NotesView
Dim profile As NotesDocument
Dim doc As NotesDocument
Dim item As notesitem
Dim username As NotesItem
Dim vals(2) As String
Dim i As Integer

Dim rthistories As NotesView
Dim rthistory As NotesDocument
Dim body As NotesRichTextItem
Dim hdoc As NotesDocument

Dim exporter As NotesDXLExporter
Dim sax As NotesSAXParser
Dim importer As NotesDXLImporter

If Not Source.IsNewDoc Then
Set s = New notessession
Set db = s.CurrentDatabase
If db.CurrentAccessLevel > ACLLEVEL_READER Then
Print "Rebuilding your document history, please wait..."

Set profiles = db.getView("Profiles")
Set profile = profiles.getdocumentbykey(s.UserName, True)

' ***********************************************************************************
' Create a profile for this user if none exists.
' ***********************************************************************************
If profile Is Nothing Then
Set profile = db.createdocument
Call profile.ReplaceItemValue("Form","Profile")
Set username = New notesitem(profile, "UserName", s.UserName, NAMES)
End If

' ***********************************************************************************
' Document visits are stored as item0, item1, item2 etc in ascending
' chronoligical order. Values are:
' - Visit date
' - document unid
' - text value, such as would be as a doclink
' ***********************************************************************************
i = 0
Do
Set item = profile.getFirstitem("item"+Cstr(i))
If item Is Nothing Then Exit Do
i=i+1
Loop
Set doc = Source.document
vals(0) = Now
vals(1) = doc.universalid
vals(2) = Left$(doc.GetFirstItem("Data").text, 40)
With profile
Call .replaceitemvalue( "item"+Cstr(i), vals )
Call .save(False,False)
End With


' ***********************************************************************************
' Now turn the user's profile into a rich text field, with one doclinks for
' each document-visit.
' ***********************************************************************************
Set rthistories = db.GetView("RTHistories")
Set rthistory = rthistories.getdocumentbykey(s.UserName,True)

' ***********************************************************************************
' Create an rthistory document for this user if none exists.
' ***********************************************************************************
If rthistory Is Nothing Then
Set rthistory = db.createdocument
Call rthistory.ReplaceItemValue("Form","RTHistory")
Set username = New notesitem(rthistory, "UserName", s.UserName, NAMES)
End If

' ***********************************************************************************
' Remove the existing rich text.
' ***********************************************************************************
Do While rthistory.HasItem("History")
Set item = rthistory.getfirstitem("History")
Call item.remove
Loop

' ***********************************************************************************
' Insert a rich text item named History.
' ***********************************************************************************
Set body = New notesrichtextitem(rthistory,"History")
Call rthistory.save(False,False)


' ***********************************************************************************
' For every itemx in the user's profile, append a doclink to the user's
' history document.
' ***********************************************************************************
For i = 0 To Ubound(profile.items)
Set item = profile.items(i)
If Left$(item.Name,4)="item" Then
Set hdoc = db.getdocumentbyunid(item.Values(1))
If Not hdoc Is Nothing Then
Call body.AppendDocLink(hdoc, "", item.Values(0)+" "+item.Values(2))
Call body.addnewline(1)
End If
End If
Next i
Call rthistory.save(False,False)

' ***********************************************************************************
' Now run the rthistory through the SAX parser to remove the doclink
' border.
' ***********************************************************************************
Set exporter = s.createdxlexporter
Set sax = s.createsaxparser
Set importer = s.createdxlimporter
importer.DocumentImportOption = DXLIMPORTOPTION_UPDATE_ELSE_CREATE
importer.ACLImportOption = DXLIMPORTOPTION_IGNORE
importer.DesignImportOption = DXLIMPORTOPTION_IGNORE
Call exporter.setinput( rthistory )
Call sax.setinput(exporter)
Call sax.setoutput( importer )
Call importer.setoutput( db )

On Event SAX_Characters From sax Call SAXCharacters
On Event SAX_EndDocument From sax Call SAXEndDocument
On Event SAX_EndElement From sax Call SAXEndElement
On Event SAX_Error From sax Call SAXError
On Event SAX_FatalError From sax Call SAXFatalError
On Event SAX_IgnorableWhitespace From sax Call SAXIgnorableWhitespace
On Event SAX_NotationDecl From sax Call SAXNotationDecl
On Event SAX_ProcessingInstruction From sax Call SAXProcessingInstruction
On Event SAX_StartDocument From sax Call SAXStartDocument
On Event SAX_StartElement From sax Call SAXStartElement
On Event SAX_UnparsedEntityDecl From sax Call SAXUnparsedEntityDecl
On Event SAX_Warning From sax Call SAXWarning

Call exporter.process

Print "Finished rebuilding your document history."
End If
End If


Now start opening and closing the Data documents you created above. Each time you close one of these documents, the QueryClose code will rebuild a rich text history (see the RTHistories view) containing links to all the documents you have opened. As the final step of this process, it runs your history document through the NotesDXLImporter, so as to remove the green doclink border. After approximately 50 repetitions, this import will fail, producing a messagebox saying "DXLimport operation failed." If you open your RTHistory document at the point, you will see that it still contains doclink borders.

If you edit the RTHistory document (that is, the document under your name in the RTHistory view) and save it, and then go back to opening and closing Data documents, the import will start working again for about 20-25 further repetitions.

I can mail an example database to anyone who wants a working example. In case it's useful, here is the complete DXL of the example database; if you import this into a new database you should be able to reproduce the problem right away.
Hide details for Example database DXLExample database DXL
<?xml version='1.0' encoding='utf-8'?>
<!DOCTYPE database SYSTEM 'xmlschemas/domino_6_5.dtd'>
<database xmlns='http://www.lotus.com/dxl' version='6.5' replicaid='85256E0B005A5D46'
path='SAXRTBug.nsf' title='SAX/RT Bug' maintainunread='false' allowspecialhierarchy='false'
overwritefreespace='false'>
<databaseinfo dbid='85256E0B005A5D46' odsversion='43' diskspace='944640' percentused='58.319783197832'
numberofdocuments='9'><datamodified><datetime>20031229T171433,49-05</datetime></datamodified><designmodified
><datetime>20031229T171345,18-05</datetime></designmodified></databaseinfo>
<acl consistentacl='true' maxinternetaccess='editor'>
<aclentry name='-Default-' default='true' level='manager' deletedocs='true'/>
<aclentry name='OtherDomainServers' type='servergroup' level='noaccess' readpublicdocs='false'
writepublicdocs='false'/>
<aclentry name='CN=Thomas Kennedy/O=Towers Perrin' type='person' level='manager'
deletedocs='true'/>
<aclentry name='NAAdmin' type='persongroup' level='manager' deletedocs='true'/>
<aclentry name='NCAdmin' type='persongroup' level='manager' deletedocs='true'/>
<aclentry name='LocalDomainServers' type='servergroup' level='manager' deletedocs='true'/>
<logentry>12/29/2003 04:30:42 PM Thomas Kennedy/Towers Perrin updated -Default-</logentry>
<logentry>12/29/2003 11:28:09 AM Thomas Kennedy/Towers Perrin updated -Default-</logentry>
<logentry>12/29/2003 11:28:05 AM Thomas Kennedy/Towers Perrin updated NCAdmin</logentry>
<logentry>12/29/2003 11:28:00 AM Thomas Kennedy/Towers Perrin updated NAAdmin</logentry>
<logentry>12/29/2003 11:27:51 AM Thomas Kennedy/Towers Perrin added NCAdmin</logentry>
<logentry>12/29/2003 11:27:51 AM Thomas Kennedy/Towers Perrin added NAAdmin</logentry>
<logentry>12/29/2003 11:27:01 AM Thomas Kennedy/Towers Perrin added OtherDomainServers</logentry>
<logentry>12/29/2003 11:27:01 AM Thomas Kennedy/Towers Perrin added LocalDomainServers</logentry>
<logentry>12/29/2003 11:27:01 AM Thomas Kennedy/Towers Perrin updated Thomas Kennedy/Towers Perrin</logentry>
<logentry>12/29/2003 11:27:01 AM Thomas Kennedy/Towers Perrin added Thomas Kennedy/Towers Perrin</logentry>
<logentry>12/29/2003 11:27:01 AM Thomas Kennedy/Towers Perrin updated -Default-</logentry></acl>
<launchsettings><noteslaunch whenopened='openaboutdocument'/></launchsettings>
<view name='(All)' alias='All' showinmenu='false' publicaccess='false' designerversion='6.5'
unreadmarks='none' onopengoto='lastopened' onrefresh='displayindicator' headers='beveled'
opencollapsed='false' showresponsehierarchy='false' showmargin='true' shrinkrows='false'
extendlastcolumn='false' unreadcolor='black' totalscolor='gray' rowlinecount='1'
headerlinecount='1' rowspacing='1' bgcolor='white' headerbgcolor='white'
boldunreadrows='false' evaluateactions='false' allownewdocuments='false'
allowcustomizations='false' hidemarginborder='false' marginwidth='0px' marginbgcolor='white'
uniquekeys='false' initialbuildrestricted='false' noemptycategories='false'>
<noteinfo noteid='116' unid='0C1AFB9603156C8985256E0B005A5D7D' sequence='2'>
<created><datetime>20031229T112701,73-05</datetime></created>
<modified><datetime>20031229T113222,12-05</datetime></modified>
<revised><datetime>20031229T113222,11-05</datetime></revised>
<lastaccessed><datetime>20031229T113222,11-05</datetime></lastaccessed>
<addedtofile><datetime>20031229T112701,73-05</datetime></addedtofile></noteinfo>
<updatedby><name>CN=Thomas Kennedy/O=Towers Perrin</name></updatedby>
<wassignedby><name>CN=Thomas Kennedy/O=Towers Perrin</name></wassignedby><code
event='selection'><formula>@All</formula></code>
<actionbar bgcolor='#d4d0c8' bordercolor='black'>
<actionbuttonstyle bgcolor='#d4d0c8'/><font size='9pt' color='system'/><border
style='solid' width='0px 0px 1px'/>
<action title='Categori_ze' showinbar='false' systemcommand='categorize'/>
<action title='_Edit Document' showinbar='false' systemcommand='edit'/>
<action title='_Send Document' showinbar='false' systemcommand='send'/>
<action title='_Forward' showinbar='false' systemcommand='forward'/>
<action title='_Move To Folder...' showinbar='false' systemcommand='movetofolder'/>
<action title='_Remove From Folder' showinbar='false' systemcommand='removefromfolder'/></actionbar>
<column sort='ascending' itemname='$0' width='10' resizable='true' separatemultiplevalues='false'
sortnoaccent='true' sortnocase='true' showaslinks='false'><columnheader title='#'><font
size='9pt' style='bold'/></columnheader><datetimeformat show='datetime' date='yearmonthday'
time='hourminutesecond' zone='never'/><numberformat format='general' digits='0'
punctuated='false' parens='false' percent='false'/><code event='value'><formula
>@Text(@DocumentUniqueID)</formula></code></column>
<item name='$Index' sign='true'><text>/O</text></item></view>
<note default='true' class='icon'>
<noteinfo noteid='11a' unid='5EF779F0DCF1669E85256E0B005A5D83' sequence='7'>
<created><datetime>20031229T112701,79-05</datetime></created>
<modified><datetime>20031229T163130,71-05</datetime></modified>
<revised><datetime>20031229T163130,70-05</datetime></revised>
<lastaccessed><datetime>20031229T163130,70-05</datetime></lastaccessed>
<addedtofile><datetime>20031229T112701,80-05</datetime></addedtofile></noteinfo>
<updatedby><name>CN=Thomas Kennedy/O=Towers Perrin</name></updatedby>
<item name='IconBitmap' summary='true'>
<itemdata type='6'>
AiAgAQAA///////wD///gAH//gAAf/wAAD/4AAAf8AAAD+AAAAfgAAAHwAAAA8AAAAPAAAADgAAA
AYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAHAAAADwAAAA8AAAAPgAAAH4AAAB/AAAA/4AAAf
/AAAP/4AAH//gAH///AP//////8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAiIiIiAAAAAAAAAAAAAAI
jPZmZm/IgAAAAAAAAAAIjGZmZmZmZsiAAAAAAAAAjGZmZmZmZmZmyAAAAAAACMZmZmZmZmZmZmyA
AAAAAIxmZmZmZmZmZmZmyAAAAAjGZmZmZmZmZmZmZmyAAAAIZmbyL2byL2byL2ZmgAAAjGZmIiJm
IiJmIiJmZsgAAIZmZiIiZiIiZiIiZmZoAADGZmYiImYiImYiImZmbAAI9mZmIiJmIiJmIiJmZm+A
CGZmZiIiZiIiZiIiZmZmgAhmZmYiImYiImYiImZmZoAIZmZmIiJmIiJmIiJmZmaACGZvIiIiZiIi
ZiIiIvZmgAhmYiIiImYiImYiIiImZoAIZm8iIi9m8i9m8iIi9maACPZmZmZmZmZmZmZmZmZvgADG
ZmbyL2byL2byL2ZmbAAAj2ZmIiJmIiJmIiJmZvgAAIxmZiIiZiIiZiIiZmbIAAAI9mbyL2byL2by
L2ZvgAAACMZmZmZmZmZmZmZmbIAAAACMZmZmZmZmZmZmZsgAAAAACMZmZmZmZmZmZmyAAAAAAACM
9mZmZmZmZm/IAAAAAAAACIz2ZmZmZm/IgAAAAAAAAAAIiMZmZmyIgAAAAAAAAAAAAACIiIiIAAAA
AAAAAAAAAAAAkAAAAIAA5QEmAA==
</itemdata></item>
<item name='$TITLE'><text>SAX/RT Bug</text></item>
<item name='$FlagsNoRefresh'><text/></item>
<item name='$Flags'><text>Jpz1</text></item></note>
<form name='Profile' nocompose='true' noquery='true' publicaccess='false'
designerversion='6.5'>
<noteinfo noteid='13a' unid='691A77E1290893C185256E0B005A97CB' sequence='5'>
<created><datetime>20031229T112930,99-05</datetime></created>
<modified><datetime>20031229T162441,55-05</datetime></modified>
<revised><datetime>20031229T162441,54-05</datetime></revised>
<lastaccessed><datetime>20031229T162441,54-05</datetime></lastaccessed>
<addedtofile><datetime>20031229T113058,25-05</datetime></addedtofile></noteinfo>
<updatedby><name>CN=Thomas Kennedy/O=Towers Perrin</name></updatedby>
<wassignedby><name>CN=Thomas Kennedy/O=Towers Perrin</name></wassignedby>
<body><richtext>
<pardef id='1' hide='notes'/>
<par def='1'><run><font color='red'/>
<field type='names' kind='editable' name='UserName'><code event='defaultvalue'><formula
>@UserName</formula></code></field></run><run><font color='red'/></run></par>
<pardef id='2'/>
<par def='2'>This form contains no editable fields</par>
<par/></richtext></body>
<item name='$$ScriptName' summary='false' sign='true'><text>Profile</text></item></form>
<form name='Data' publicaccess='false' designerversion='6.5'>
<noteinfo noteid='13e' unid='BAB508EB88FE238385256E0B005ABDFF' sequence='44'>
<created><datetime>20031229T113108,79-05</datetime></created>
<modified><datetime>20031229T162614,51-05</datetime></modified>
<revised><datetime>20031229T162614,50-05</datetime></revised>
<lastaccessed><datetime>20031229T162614,50-05</datetime></lastaccessed>
<addedtofile><datetime>20031229T113134,10-05</datetime></addedtofile></noteinfo>
<updatedby><name>CN=Thomas Kennedy/O=Towers Perrin</name></updatedby>
<wassignedby><name>CN=Thomas Kennedy/O=Towers Perrin</name></wassignedby>
<globals><code event='options'><lotusscript>Option Public
Option Explicit
Use "Utility"
</lotusscript></code><code event='terminate'><lotusscript>Sub Terminate

End Sub











</lotusscript></code><code event='SAXStartDocument'><lotusscript>Sub SAXStartDocument (Source As Notessaxparser)
Source.Output( "&lt;?xml version='1.0' encoding='utf-8'?&gt;" )
Source.Output( "&lt;!DOCTYPE document SYSTEM 'xmlschemas/domino_6_0.dtd'&gt;" )
End Sub
</lotusscript></code><code event='SAXEndDocument'><lotusscript>Sub SAXEndDocument (Source As Notessaxparser)


End Sub
</lotusscript></code><code event='SAXCharacters'><lotusscript>Sub SAXCharacters (Source As Notessaxparser, Byval Characters As String, Count As Long)
Dim tmp As String

tmp = Replacesubstring( Characters,"&amp;", "&amp;amp;" )
tmp = Replacesubstring( tmp,"&lt;", "&amp;lt;" )
tmp = Replacesubstring( tmp,"&gt;", "&amp;gt;" )
tmp = Replacesubstring( tmp,"'", "&amp;apos;" )
tmp = Replacesubstring( tmp,"""", "&amp;quot;" )
Source.Output(tmp )
End Sub
</lotusscript></code><code event='SAXEndElement'><lotusscript>Sub SAXEndElement (Source As Notessaxparser, Byval ElementName As String)
Source.Output( "&lt;/"+Elementname+"&gt;" )
End Sub
</lotusscript></code><code event='SAXError'><lotusscript>Sub SAXError (Source As Notessaxparser, Exception As NotesSaxException )

End Sub
</lotusscript></code><code event='SAXFatalError'><lotusscript>Sub SAXFatalError (Source As Notessaxparser, Exception As NotesSaxException)

End Sub
</lotusscript></code><code event='SAXIgnorableWhitespace'><lotusscript>Sub SAXIgnorableWhitespace (Source As Notessaxparser,_
Byval characters As String, Count As Long)

End Sub
</lotusscript></code><code event='SAXNotationDecl'><lotusscript>Sub SAXNotationDecl (Source As Notessaxparser,_
Byval NotationName As String, Byval publicid As String,_
Byval systemid As String)



End Sub
</lotusscript></code><code event='SAXProcessingInstruction'><lotusscript>Sub SAXProcessingInstruction (Source As Notessaxparser,_
Byval target As String, Byval PIData As String)

End Sub
</lotusscript></code><code event='SAXStartElement'><lotusscript>Sub SAXStartElement (Source As Notessaxparser, Byval elementname As String, Attributes As NotesSaxAttributeList)

Dim i As Long, n As Long

Select Case elementname
Case "doclink"
' *************************************************************
' Set the showborder attribute to 'false'.
' *************************************************************
Source.Output("&lt;"+elementname)
n = Attributes.Length
For i = 1 To n
Select Case attributes.GetName(i)
Case "showborder"
Source.Output(" "+attributes.GetName(i)+"='false'")
Case Else
Source.Output(" "+attributes.GetName(i)+"='"+attributes.GetValue(i)+"'")
End Select
Next i
Source.Output("&gt;")
Case Else
' *************************************************************
' Copy this element as-is.
' *************************************************************
Source.Output("&lt;"+elementname)
n = Attributes.Length
For i = 1 To n
Source.Output(" "+attributes.GetName(i)+"='"+attributes.GetValue(i)+"'")
Next i
Source.Output("&gt;")
End Select
End Sub
</lotusscript></code><code event='SAXUnParsedEntityDecl'><lotusscript>Sub SAXUnParsedEntityDecl (Source As Notessaxparser,_
Byval Entityname As String, Byval publicid As String,_
Byval systemid As String, Byval notationname As String)

End Sub
</lotusscript></code><code event='SAXWarning'><lotusscript>Sub SAXWarning (Source As Notessaxparser, Exception As NotesSaxException)

End Sub</lotusscript></code></globals><code event='queryclose'><lotusscript
>Sub Queryclose(Source As Notesuidocument, Continue As Variant)
' ***********************************************************************************
' Add this document-visit to the user's profile.
' ***********************************************************************************
Dim s As NotesSession
Dim db As NotesDatabase
Dim profiles As NotesView
Dim profile As NotesDocument
Dim doc As NotesDocument
Dim item As notesitem
Dim username As NotesItem
Dim vals(2) As String
Dim i As Integer

Dim rthistories As NotesView
Dim rthistory As NotesDocument
Dim body As NotesRichTextItem
Dim hdoc As NotesDocument

Dim exporter As NotesDXLExporter
Dim sax As NotesSAXParser
Dim importer As NotesDXLImporter

If Not Source.IsNewDoc Then
Set s = New notessession
Set db = s.CurrentDatabase
If db.CurrentAccessLevel &gt; ACLLEVEL_READER Then
Print "Rebuilding your document history, please wait..."

Set profiles = db.getView("Profiles")
Set profile = profiles.getdocumentbykey(s.UserName, True)

' ***********************************************************************************
' Create a profile for this user if none exists.
' ***********************************************************************************
If profile Is Nothing Then
Set profile = db.createdocument
Call profile.ReplaceItemValue("Form","Profile")
Set username = New notesitem(profile, "UserName", s.UserName, NAMES)
End If

' ***********************************************************************************
' Document visits are stored as item0, item1, item2 etc in ascending
' chronoligical order. Values are:
' - Visit date
' - document unid
' - text value, such as would be as a doclink
' ***********************************************************************************
i = 0
Do
Set item = profile.getFirstitem("item"+Cstr(i))
If item Is Nothing Then Exit Do
i=i+1
Loop
Set doc = Source.document
vals(0) = Now
vals(1) = doc.universalid
vals(2) = Left$(doc.GetFirstItem("Data").text, 40)
With profile
Call .replaceitemvalue( "item"+Cstr(i), vals )
Call .save(False,False)
End With


' ***********************************************************************************
' Now turn the user's profile into a rich text field, with one doclinks for
' each document-visit.
' ***********************************************************************************
Set rthistories = db.GetView("RTHistories")
Set rthistory = rthistories.getdocumentbykey(s.UserName,True)

' ***********************************************************************************
' Create an rthistory document for this user if none exists.
' ***********************************************************************************
If rthistory Is Nothing Then
Set rthistory = db.createdocument
Call rthistory.ReplaceItemValue("Form","RTHistory")
Set username = New notesitem(rthistory, "UserName", s.UserName, NAMES)
End If

' ***********************************************************************************
' Remove the existing rich text.
' ***********************************************************************************
Do While rthistory.HasItem("History")
Set item = rthistory.getfirstitem("History")
Call item.remove
Loop

' ***********************************************************************************
' Insert a rich text item named History.
' ***********************************************************************************
Set body = New notesrichtextitem(rthistory,"History")
Call rthistory.save(False,False)


' ***********************************************************************************
' For every itemx in the user's profile, append a doclink to the user's
' history document.
' ***********************************************************************************
For i = 0 To Ubound(profile.items)
Set item = profile.items(i)
If Left$(item.Name,4)="item" Then
Set hdoc = db.getdocumentbyunid(item.Values(1))
If Not hdoc Is Nothing Then
Call body.AppendDocLink(hdoc, "", item.Values(0)+" "+item.Values(2))
Call body.addnewline(1)
End If
End If
Next i
Call rthistory.save(False,False)

' ***********************************************************************************
' Now run the rthistory through the SAX parser to remove the doclink
' border.
' ***********************************************************************************

Set exporter = s.createdxlexporter
Set sax = s.createsaxparser
Set importer = s.createdxlimporter
importer.DocumentImportOption = DXLIMPORTOPTION_UPDATE_ELSE_CREATE
importer.ACLImportOption = DXLIMPORTOPTION_IGNORE
importer.DesignImportOption = DXLIMPORTOPTION_IGNORE
Call exporter.setinput( rthistory )
Call sax.setinput(exporter)
Call sax.setoutput( importer )
Call importer.setoutput( db )

' Dim stream As NotesStream
' Set stream = s.CreateStream
' Call stream.Open("c:\temp\output.txt")
' Call sax.setinput(exporter)
' Call sax.setoutput(stream)

On Event SAX_Characters From sax Call SAXCharacters
On Event SAX_EndDocument From sax Call SAXEndDocument
On Event SAX_EndElement From sax Call SAXEndElement
On Event SAX_Error From sax Call SAXError
On Event SAX_FatalError From sax Call SAXFatalError
On Event SAX_IgnorableWhitespace From sax Call SAXIgnorableWhitespace
On Event SAX_NotationDecl From sax Call SAXNotationDecl
On Event SAX_ProcessingInstruction From sax Call SAXProcessingInstruction
On Event SAX_StartDocument From sax Call SAXStartDocument
On Event SAX_StartElement From sax Call SAXStartElement
On Event SAX_UnparsedEntityDecl From sax Call SAXUnparsedEntityDecl
On Event SAX_Warning From sax Call SAXWarning

Call exporter.process

Print "Finished rebuilding your document history."
End If
End If
End Sub</lotusscript></code>
<body><richtext>
<pardef id='1'/>
<par def='1'/>
<par>
<field type='text' kind='editable' name='Data'><code event='inputtranslation'><formula
>@Trim(Data)</formula></code><code event='inputvalidation'><formula>@If(IsDocBeingSaved &amp; Data="";@Failure("Data is required.");@Success)</formula></code></field></par></richtext></body>
<item name='$$ScriptName' summary='false' sign='true'><text>Data</text></item></form>
<view name='Data' showinmenu='false' noreplace='true' publicaccess='false'
designerversion='6.5' default='true' unreadmarks='none' onopengoto='lastopened'
onrefresh='displayindicator' headers='beveled' opencollapsed='false' showresponsehierarchy='false'
showmargin='true' shrinkrows='false' extendlastcolumn='true' unreadcolor='black'
totalscolor='gray' rowlinecount='1' headerlinecount='1' rowspacing='1' bgcolor='white'
headerbgcolor='white' boldunreadrows='false' evaluateactions='false' allownewdocuments='false'
allowcustomizations='false' hidemarginborder='false' marginwidth='0px' marginbgcolor='white'
uniquekeys='false' initialbuildrestricted='false' noemptycategories='false'>
<noteinfo noteid='142' unid='684679787C0B8F9F85256E0B005AE1E9' sequence='6'>
<created><datetime>20031229T113240,73-05</datetime></created>
<modified><datetime>20031229T162345,71-05</datetime></modified>
<revised><datetime>20031229T162345,70-05</datetime></revised>
<lastaccessed><datetime>20031229T162345,70-05</datetime></lastaccessed>
<addedtofile><datetime>20031229T113240,74-05</datetime></addedtofile></noteinfo>
<updatedby><name>CN=Thomas Kennedy/O=Towers Perrin</name></updatedby>
<wassignedby><name>CN=Thomas Kennedy/O=Towers Perrin</name></wassignedby><code
event='selection'><formula> Form="Data"</formula></code>
<actionbar bgcolor='#d4d0c8' bordercolor='black'>
<actionbuttonstyle bgcolor='#d4d0c8'/><font size='9pt' color='system'/><border
style='solid' width='0px 0px 1px'/>
<action title='Categori_ze' showinbar='false' systemcommand='categorize'/>
<action title='_Edit Document' showinbar='false' systemcommand='edit'/>
<action title='_Send Document' showinbar='false' systemcommand='send'/>
<action title='_Forward' showinbar='false' systemcommand='forward'/>
<action title='_Move To Folder...' showinbar='false' systemcommand='movetofolder'/>
<action title='_Remove From Folder' showinbar='false' systemcommand='removefromfolder'/></actionbar>
<column itemname='Data' width='47.6250' resizable='true' separatemultiplevalues='false'
sortnoaccent='true' sortnocase='true' showaslinks='false'><columnheader title='Open &amp; close these docs to create a rich text history (see RTHistories view)'><font
size='9pt'/></columnheader><datetimeformat show='datetime' date='yearmonthday'
time='hourminutesecond' zone='never'/><numberformat format='general' digits='0'
punctuated='false' parens='false' percent='false'/></column>
<item name='$FormatNote' summary='true'>
<itemdata type='4'>
AQCJbBUDlvsaDH1dWgALbiWF
</itemdata></item>
<item name='$Index' sign='true'><text>/O</text></item></view>
<view name='Profiles' showinmenu='false' noreplace='true' publicaccess='false'
designerversion='6.5' unreadmarks='none' onopengoto='lastopened' onrefresh='displayindicator'
headers='beveled' opencollapsed='false' showresponsehierarchy='false' showmargin='true'
shrinkrows='false' extendlastcolumn='true' unreadcolor='black' totalscolor='gray'
rowlinecount='1' headerlinecount='1' rowspacing='1' bgcolor='white' headerbgcolor='white'
boldunreadrows='false' evaluateactions='false' allownewdocuments='false'
allowcustomizations='false' hidemarginborder='false' marginwidth='0px' marginbgcolor='white'
uniquekeys='false' initialbuildrestricted='false' noemptycategories='false'>
<noteinfo noteid='146' unid='12080B5BDAA0815E85256E0B005AE9A6' sequence='6'>
<created><datetime>20031229T113300,54-05</datetime></created>
<modified><datetime>20031229T162325,72-05</datetime></modified>
<revised><datetime>20031229T162325,71-05</datetime></revised>
<lastaccessed><datetime>20031229T162325,71-05</datetime></lastaccessed>
<addedtofile><datetime>20031229T113300,56-05</datetime></addedtofile></noteinfo>
<updatedby><name>CN=Thomas Kennedy/O=Towers Perrin</name></updatedby>
<wassignedby><name>CN=Thomas Kennedy/O=Towers Perrin</name></wassignedby><code
event='selection'><formula> Form="Profile"</formula></code>
<actionbar bgcolor='#d4d0c8' bordercolor='black'>
<actionbuttonstyle bgcolor='#d4d0c8'/><font size='9pt' color='system'/><border
style='solid' width='0px 0px 1px'/>
<action title='Categori_ze' showinbar='false' systemcommand='categorize'/>
<action title='_Edit Document' showinbar='false' systemcommand='edit'/>
<action title='_Send Document' showinbar='false' systemcommand='send'/>
<action title='_Forward' showinbar='false' systemcommand='forward'/>
<action title='_Move To Folder...' showinbar='false' systemcommand='movetofolder'/>
<action title='_Remove From Folder' showinbar='false' systemcommand='removefromfolder'/></actionbar>
<column sort='ascending' itemname='UserName' width='53' resizable='true' separatemultiplevalues='false'
sortnoaccent='true' sortnocase='true' showaslinks='false'><columnheader title='This document contains a record of the documents you have visited. '><font
size='9pt'/></columnheader><datetimeformat show='datetime' date='yearmonthday'
time='hourminutesecond' zone='never'/><numberformat format='general' digits='0'
punctuated='false' parens='false' percent='false'/><code event='value'><formula
>UserName</formula></code></column>
<item name='$FormatNote' summary='true'>
<itemdata type='4'>
AQCJbBUDlvsaDH1dWgALbiWF
</itemdata></item>
<item name='$Index' sign='true'><text>/O</text></item></view>
<form name='RTHistory' nocompose='true' noquery='true' publicaccess='false'
designerversion='6.5'>
<noteinfo noteid='14a' unid='36878EECE2B9C51C85256E0B005B1AB8' sequence='6'>
<created><datetime>20031229T113506,16-05</datetime></created>
<modified><datetime>20031229T140718,11-05</datetime></modified>
<revised><datetime>20031229T140718,10-05</datetime></revised>
<lastaccessed><datetime>20031229T140718,10-05</datetime></lastaccessed>
<addedtofile><datetime>20031229T113506,19-05</datetime></addedtofile></noteinfo>
<updatedby><name>CN=Thomas Kennedy/O=Towers Perrin</name></updatedby>
<wassignedby><name>CN=Thomas Kennedy/O=Towers Perrin</name></wassignedby>
<body><richtext>
<pardef id='1' hide='notes'/>
<par def='1'><run><font color='red'/>
<field type='names' kind='editable' name='UserName'><code event='defaultvalue'><formula
>@UserName</formula></code></field></run><run><font color='red'/></run></par>
<pardef id='2'/>
<par def='2'>
<field type='richtext' kind='editable' name='History'/></par></richtext></body>
<item name='$$ScriptName' summary='false' sign='true'><text>RTHistory</text></item></form>
<view name='RTHistories' showinmenu='false' noreplace='true' publicaccess='false'
designerversion='6.5' unreadmarks='none' onopengoto='lastopened' onrefresh='displayindicator'
headers='beveled' opencollapsed='false' showresponsehierarchy='false' showmargin='true'
shrinkrows='false' extendlastcolumn='true' unreadcolor='black' totalscolor='gray'
rowlinecount='1' headerlinecount='1' rowspacing='1' bgcolor='white' headerbgcolor='white'
boldunreadrows='false' evaluateactions='false' allownewdocuments='false'
allowcustomizations='false' hidemarginborder='false' marginwidth='0px' marginbgcolor='white'
uniquekeys='false' initialbuildrestricted='false' noemptycategories='false'>
<noteinfo noteid='15e' unid='E0C9B93B02FB434F85256E0B005F2EA3' sequence='4'>
<created><datetime>20031229T121938,59-05</datetime></created>
<modified><datetime>20031229T162312,19-05</datetime></modified>
<revised><datetime>20031229T162312,18-05</datetime></revised>
<lastaccessed><datetime>20031229T162312,18-05</datetime></lastaccessed>
<addedtofile><datetime>20031229T121938,61-05</datetime></addedtofile></noteinfo>
<updatedby><name>CN=Thomas Kennedy/O=Towers Perrin</name></updatedby>
<wassignedby><name>CN=Thomas Kennedy/O=Towers Perrin</name></wassignedby><code
event='selection'><formula> Form="RTHistory"</formula></code>
<actionbar bgcolor='#d4d0c8' bordercolor='black'>
<actionbuttonstyle bgcolor='#d4d0c8'/><font size='9pt' color='system'/><border
style='solid' width='0px 0px 1px'/>
<action title='Categori_ze' showinbar='false' systemcommand='categorize'/>
<action title='_Edit Document' showinbar='false' systemcommand='edit'/>
<action title='_Send Document' showinbar='false' systemcommand='send'/>
<action title='_Forward' showinbar='false' systemcommand='forward'/>
<action title='_Move To Folder...' showinbar='false' systemcommand='movetofolder'/>
<action title='_Remove From Folder' showinbar='false' systemcommand='removefromfolder'/></actionbar>
<column sort='ascending' itemname='UserName' width='29.8750' resizable='true'
separatemultiplevalues='false' sortnoaccent='true' sortnocase='true' showaslinks='false'><columnheader
title='This document is your rich text history.'><font size='8pt'/></columnheader><datetimeformat
show='datetime' date='yearmonthday' time='hourminutesecond' zone='never'/><numberformat
format='general' digits='0' punctuated='false' parens='false' percent='false'/><code
event='value'><formula>UserName</formula></code></column>
<item name='$FormatNote' summary='true'>
<itemdata type='4'>
AQCJbBUDlvsaDH1dWgALbiWF
</itemdata></item>
<item name='$Index' sign='true'><text>/O</text></item></view>
<scriptlibrary name='Utility' hide='v3 v4'>
<noteinfo noteid='16a' unid='C9671AF8232C233285256E0B0060D2B3' sequence='1'>
<created><datetime>20031229T123733,95-05</datetime></created>
<modified><datetime>20031229T123734,01-05</datetime></modified>
<revised><datetime>20031229T123733,98-05</datetime></revised>
<lastaccessed><datetime>20031229T123734,01-05</datetime></lastaccessed>
<addedtofile><datetime>20031229T123734,01-05</datetime></addedtofile></noteinfo>
<updatedby><name>CN=Thomas Kennedy/O=Towers Perrin</name></updatedby>
<wassignedby><name>CN=Thomas Kennedy/O=Towers Perrin</name></wassignedby><code
event='options'><lotusscript>Option Public
Option Explicit
</lotusscript></code><code event='terminate'><lotusscript>Sub Terminate

End Sub
</lotusscript></code><code event='ReplaceSubString'><lotusscript>Function ReplaceSubString(fullString As String, oldString As String, newString As String) As String
Dim lenoldstring As Integer
Dim position As Integer

lenOldstring = Len(oldString)
position = Instr(fullString, oldString)
Do While position &gt; 0 And oldString &lt;&gt; ""
fullString = Left(fullString, position-1) &amp; newString &amp; Mid(fullString, position + lenOldString)
position = Instr(position + Len(newString), fullString, oldString)
Loop
ReplaceSubString=fullString
End Function</lotusscript></code></scriptlibrary>
<page name='About' publicaccess='false' designerversion='6.5'>
<noteinfo noteid='16e' unid='D1A76E8011D3B42385256E0B00705AC0' sequence='3'>
<created><datetime>20031229T152712,64-05</datetime></created>
<modified><datetime>20031229T161344,69-05</datetime></modified>
<revised><datetime>20031229T161344,68-05</datetime></revised>
<lastaccessed><datetime>20031229T161344,68-05</datetime></lastaccessed>
<addedtofile><datetime>20031229T153755,98-05</datetime></addedtofile></noteinfo>
<updatedby><name>CN=Thomas Kennedy/O=Towers Perrin</name></updatedby>
<wassignedby><name>CN=Thomas Kennedy/O=Towers Perrin</name></wassignedby>
<body><richtext>
<pardef id='1'/>
<par def='1'/>
<par><run><font size='12pt'/>About this example</run></par>
<par/>
<par>This demonstrates a problem that occurs when repeatedly re-importing the same document into a database via NotesDXLImporter. After approximately 50 repetitions the import will fail, and will only start working again - and then only temporarily - after you edit the document and save it.</par>
<par/>
<par><run><font size='12pt'/>To reproduce the problem</run></par>
<par/>
<par>1. Open the Data view.</par>
<par>2. Open any document in this view.</par>
<par>3. Close that document.</par>
<par/>
<pardef id='2' leftmargin='1.5000in'/>
<par def='2'>At this point there will be two new documents created for you, one in the Profiles view, one in the RTHistories view. The RTHistory document contains a doclink to the document you opened in step 2. Note that the doclink obrder has been removed. (You can see the code for this in the Data form's QueryClose event.)</par>
<par def='1'/>
<par>4. Repeat steps 2 &amp; 3; after aproximately 50 repetitions, you will get a "DXL importer operation failed" message.</par>
<par/>
<par>If you open your RTHistory document (that is, the document in the RTHistories view) you will see that all the links still have their border. This is the document the importer just attempted unsuccessfully to overwrite.</par>
<par/>
<par>5. Double-click to edit the RTHistory document.</par>
<par>6. Press CTRL+S to save the RTHistory document.</par>
<par>7. Close the RTHistory document and continue to repeat steps 1-3. At first, the import operation will work, but it will fail again after a few more repetitions.</par>
<par/>
<par/></richtext></body>
<item name='$$ScriptName' summary='false' sign='true'><text>About</text></item></page>
<helpaboutdocument publicaccess='false' designerversion='6.5' default='true'>
<noteinfo noteid='172' unid='59C3A7810F477CFE85256E0B0074C5A9' sequence='4'>
<created><datetime>20031229T161527,77-05</datetime></created>
<modified><datetime>20031229T163023,61-05</datetime></modified>
<revised><datetime>20031229T163023,60-05</datetime></revised>
<lastaccessed><datetime>20031229T163023,60-05</datetime></lastaccessed>
<addedtofile><datetime>20031229T161533,52-05</datetime></addedtofile></noteinfo>
<updatedby><name>CN=Thomas Kennedy/O=Towers Perrin</name></updatedby>
<wassignedby><name>CN=Thomas Kennedy/O=Towers Perrin</name></wassignedby>
<body><richtext>
<pardef id='1'/>
<par def='1'><actionhotspot hotspotstyle='none'><code event='click'><formula
>@Command([FilePrint])</formula></code><run><font style='underline' color='blue'/>print</run></actionhotspot> <actionhotspot
hotspotstyle='none'><code event='click'><formula>@Command([FileCloseWindow])</formula></code><run
><font style='underline' color='blue'/>close</run></actionhotspot></par>
<par><run><font size='12pt'/>About this example</run></par>
<par/>
<par>This demonstrates a problem that occurs when repeatedly re-importing the same document into a database via NotesDXLImporter. After approximately 50 repetitions the import will fail, and will only start working again - and then only temporarily - after you edit the document and save it.</par>
<par/>
<par><run><font size='12pt'/>To reproduce the problem</run></par>
<par/>
<par>1. Open the Data view.</par>
<par>2. Open any document in this view.</par>
<par>3. Close that document.</par>
<par/>
<pardef id='2' leftmargin='1.5000in'/>
<par def='2'>At this point there will be two new documents created for you, one in the Profiles view, one in the RTHistories view. The RTHistory document contains a doclink to the document you opened in step 2. Note that the doclink border has been removed. (You can see the code for this in the Data form's QueryClose event.)</par>
<par def='1'/>
<par>4. Repeat steps 2 &amp; 3; after approximately 50 repetitions, you will get a "DXL importer operation failed" message.</par>
<par/>
<par def='2'>If you open your RTHistory document (that is, the document in the RTHistories view) you will see that all the links still have their border. This is the document the importer just attempted unsuccessfully to overwrite.</par>
<par def='1'/>
<par>5. Double-click to edit the RTHistory document.</par>
<par>6. Press CTRL+S to save the RTHistory document.</par>
<par>7. Close the RTHistory document and continue to repeat steps 1-3. At first, the import operation will work, but it will fail again after about 20-25 further repetitions.</par>
<par/></richtext></body></helpaboutdocument>
<agent name='Export db to DXL' hide='v3' publicaccess='false' designerversion='6.5'>
<noteinfo noteid='17a' unid='DBDECBC77578BC4685256E0B0079BFB6' sequence='1'>
<created><datetime>20031229T170949,34-05</datetime></created>
<modified><datetime>20031229T171321,88-05</datetime></modified>
<revised><datetime>20031229T171321,80-05</datetime></revised>
<lastaccessed><datetime>20031229T171321,88-05</datetime></lastaccessed>
<addedtofile><datetime>20031229T171321,88-05</datetime></addedtofile></noteinfo>
<updatedby><name>CN=Thomas Kennedy/O=Towers Perrin</name></updatedby>
<wassignedby><name>CN=Thomas Kennedy/O=Towers Perrin</name></wassignedby>
<designchange><datetime>20031229T171321,61-05</datetime></designchange>
<trigger type='actionsmenu'/>
<documentset type='runonce'/><code event='options'><lotusscript>Option Public
Option Declare

</lotusscript></code><code event='initialize'><lotusscript>Sub Initialize
Dim s As notessession
Dim db As NotesDatabase
Dim exporter As NotesDXLExporter
Dim stream As NotesStream


Set s = New notessession
Set db = s.currentdatabase
Set stream = s.createstream
Call stream.Open("c:\temp\output.xml")
Set exporter = s.CreateDXLExporter
Call exporter.setinput(db)
Call exporter.setoutput(stream)
Call exporter.process

End Sub</lotusscript></code>
<rundata processeddocs='0' exitcode='0' agentdata='7E42A4D3498DD07785256E0B007A1BD5'>
<agentmodified><datetime>20031229T171321,88-05</datetime></agentmodified>
<agentrun><datetime>20031229T171347,91-05</datetime></agentrun>
<runlog>Started running agent 'Export db to DXL' on 12/29/2003 05:13:45 PM
Ran LotusScript code
Done running agent 'Export db to DXL' on 12/29/2003 05:13:47 PM
</runlog></rundata></agent>
<agentdata>
<noteinfo noteid='17e' unid='7E42A4D3498DD07785256E0B007A1BD5' sequence='1'>
<created><datetime>20031229T171345,17-05</datetime></created>
<modified><datetime>20031229T171345,18-05</datetime></modified>
<revised><datetime>20031229T171345,17-05</datetime></revised>
<lastaccessed><datetime>20031229T171345,17-05</datetime></lastaccessed>
<addedtofile><datetime>20031229T171345,17-05</datetime></addedtofile></noteinfo>
<updatedby><name>CN=Thomas Kennedy/O=Towers Perrin</name></updatedby></agentdata>
<document form='Data'>
<noteinfo noteid='8f6' unid='14FC7F4F97D2241185256E0B005B44F4' sequence='2'>
<created><datetime>20031229T113654,28-05</datetime></created>
<modified><datetime>20031229T114120,95-05</datetime></modified>
<revised><datetime>20031229T114120,94-05</datetime></revised>
<lastaccessed><datetime>20031229T114120,94-05</datetime></lastaccessed>
<addedtofile><datetime>20031229T113701,62-05</datetime></addedtofile></noteinfo>
<updatedby><name>CN=Thomas Kennedy/O=Towers Perrin</name></updatedby>
<item name='Data'><text>The time you won your town the race </text></item>
<item name='$Revisions'><datetime>20031229T113701,61-05</datetime></item></document>
<document form='Data'>
<noteinfo noteid='8fa' unid='0CD16B7D45D2825E85256E0B005B4BFB' sequence='4'>
<created><datetime>20031229T113712,27-05</datetime></created>
<modified><datetime>20031229T142236,75-05</datetime></modified>
<revised><datetime>20031229T142236,74-05</datetime></revised>
<lastaccessed><datetime>20031229T142236,74-05</datetime></lastaccessed>
<addedtofile><datetime>20031229T113712,27-05</datetime></addedtofile></noteinfo>
<updatedby><name>CN=Thomas Kennedy/O=Towers Perrin</name></updatedby>
<revisions><datetime>20031229T113712,27-05</datetime><datetime>20031229T113730,82-05</datetime><datetime
>20031229T114156,51-05</datetime></revisions>
<item name='Data'><text>We chaired you through the market-place</text></item></document>
<document form='Data'>
<noteinfo noteid='8fe' unid='1DA382FA70DBF40C85256E0B005B4C64' sequence='3'>
<created><datetime>20031229T113713,32-05</datetime></created>
<modified><datetime>20031229T114208,34-05</datetime></modified>
<revised><datetime>20031229T114208,33-05</datetime></revised>
<lastaccessed><datetime>20031229T114208,33-05</datetime></lastaccessed>
<addedtofile><datetime>20031229T113713,32-05</datetime></addedtofile></noteinfo>
<updatedby><name>CN=Thomas Kennedy/O=Towers Perrin</name></updatedby>
<revisions><datetime>20031229T113713,32-05</datetime><datetime>20031229T114204,86-05</datetime></revisions>
<item name='Data'><text>Man and boy stood cheering by, </text></item></document>
<document form='Data'>
<noteinfo noteid='902' unid='78EC5E344DEA0F4885256E0B005B4C7F' sequence='2'>
<created><datetime>20031229T113713,59-05</datetime></created>
<modified><datetime>20031229T114219,51-05</datetime></modified>
<revised><datetime>20031229T114219,50-05</datetime></revised>
<lastaccessed><datetime>20031229T114219,50-05</datetime></lastaccessed>
<addedtofile><datetime>20031229T113713,59-05</datetime></addedtofile></noteinfo>
<updatedby><name>CN=Thomas Kennedy/O=Towers Perrin</name></updatedby>
<item name='Data'><text>And home we brought you shoulder-high.</text></item>
<item name='$Revisions'><datetime>20031229T113713,59-05</datetime></item></document>
<document form='Data'>
<noteinfo noteid='906' unid='E3BBC156A0224C6785256E0B005B4C9D' sequence='2'>
<created><datetime>20031229T113713,89-05</datetime></created>
<modified><datetime>20031229T114229,12-05</datetime></modified>
<revised><datetime>20031229T114229,11-05</datetime></revised>
<lastaccessed><datetime>20031229T114229,11-05</datetime></lastaccessed>
<addedtofile><datetime>20031229T113713,89-05</datetime></addedtofile></noteinfo>
<updatedby><name>CN=Thomas Kennedy/O=Towers Perrin</name></updatedby>
<item name='Data'><text>To-day, the road all runners come,</text></item>
<item name='$Revisions'><datetime>20031229T113713,89-05</datetime></item></document>
<document form='Data'>
<noteinfo noteid='90a' unid='D29B550E6031431085256E0B005B4CB9' sequence='2'>
<created><datetime>20031229T113714,17-05</datetime></created>
<modified><datetime>20031229T114239,48-05</datetime></modified>
<revised><datetime>20031229T114239,47-05</datetime></revised>
<lastaccessed><datetime>20031229T114239,47-05</datetime></lastaccessed>
<addedtofile><datetime>20031229T113714,20-05</datetime></addedtofile></noteinfo>
<updatedby><name>CN=Thomas Kennedy/O=Towers Perrin</name></updatedby>
<item name='Data'><text>Shoulder-high we bring you home,</text></item>
<item name='$Revisions'><datetime>20031229T113714,20-05</datetime></item></document>
<document form='Data'>
<noteinfo noteid='90e' unid='CD44C149C74C295D85256E0B005B4CE0' sequence='2'>
<created><datetime>20031229T113714,56-05</datetime></created>
<modified><datetime>20031229T114248,96-05</datetime></modified>
<revised><datetime>20031229T114248,95-05</datetime></revised>
<lastaccessed><datetime>20031229T114248,95-05</datetime></lastaccessed>
<addedtofile><datetime>20031229T113714,59-05</datetime></addedtofile></noteinfo>
<updatedby><name>CN=Thomas Kennedy/O=Towers Perrin</name></updatedby>
<item name='Data'><text>And set you at your threshold down,</text></item>
<item name='$Revisions'><datetime>20031229T113714,59-05</datetime></item></document>
<document form='Data'>
<noteinfo noteid='912' unid='A54C2AEE23EFCE9485256E0B005B4CFA' sequence='2'>
<created><datetime>20031229T113714,82-05</datetime></created>
<modified><datetime>20031229T114258,12-05</datetime></modified>
<revised><datetime>20031229T114258,11-05</datetime></revised>
<lastaccessed><datetime>20031229T114258,11-05</datetime></lastaccessed>
<addedtofile><datetime>20031229T113714,84-05</datetime></addedtofile></noteinfo>
<updatedby><name>CN=Thomas Kennedy/O=Towers Perrin</name></updatedby>
<item name='Data'><text>Townsman of a stiller town.</text></item>
<item name='$Revisions'><datetime>20031229T113714,84-05</datetime></item></document>
<profiledocument name='breakpoints_' username='n=thomas kennedy/o=towers perrin'>
<noteinfo noteid='946' unid='9E3EA7163918B8D285256E0B005DE453' sequence='1'>
<created><datetime>20031229T120532,99-05</datetime></created>
<modified><datetime>20031229T120533,00-05</datetime></modified>
<revised><datetime>20031229T120532,99-05</datetime></revised>
<lastaccessed><datetime>20031229T120532,99-05</datetime></lastaccessed>
<addedtofile><datetime>20031229T120532,99-05</datetime></addedtofile></noteinfo>
<updatedby><name>CN=Thomas Kennedy/O=Towers Perrin</name></updatedby></profiledocument>
<document form='Memo'>
<noteinfo noteid='9aa' unid='08F93B8034C3303885256E0B0068EA8D' sequence='1'>
<created><datetime>20031229T140557,89-05</datetime></created>
<modified><datetime>20031229T140558,06-05</datetime></modified>
<revised><datetime>20031229T140558,05-05</datetime></revised>
<lastaccessed><datetime>20031229T140558,06-05</datetime></lastaccessed>
<addedtofile><datetime>20031229T140558,06-05</datetime></addedtofile></noteinfo>
<updatedby><name>CN=Thomas Kennedy/O=Towers Perrin</name></updatedby>
<item name='Body' sign='true' seal='true'><richtext>
<par>&lt;?xml version='1.0' encoding='utf-8'?&gt;<break/>&lt;!DOCTYPE document SYSTEM 'xmlschemas/domino_6_5.dtd'&gt;<break
/>&lt;document xmlns='http://www.lotus.com/dxl' version='6.5' replicaid='85256E0B005A5D46'<break
/> form='RTHistory'&gt;<break/>&lt;noteinfo noteid='9a6' unid='5F53E29B324D795385256E0B006883C7' sequence='120'&gt;<break
/>&lt;created&gt;&lt;datetime&gt;20031229T140134,79-05&lt;/datetime&gt;&lt;/created&gt;<break
/>&lt;modified&gt;&lt;datetime&gt;20031229T140308,01-05&lt;/datetime&gt;&lt;/modified&gt;<break
/>&lt;revised&gt;&lt;datetime&gt;20031229T140308,00-05&lt;/datetime&gt;&lt;/revised&gt;<break
/>&lt;lastaccessed&gt;&lt;datetime&gt;20031229T140308,00-05&lt;/datetime&gt;&lt;/lastaccessed&gt;<break
/>&lt;addedtofile&gt;&lt;datetime&gt;20031229T140134,79-05&lt;/datetime&gt;&lt;/addedtofile&gt;&lt;/noteinfo&gt;<break
/>&lt;updatedby&gt;&lt;name&gt;CN=Thomas Kennedy/O=Towers Perrin&lt;/name&gt;&lt;/updatedby&gt;<break
/>&lt;revisions&gt;&lt;datetime&gt;20031229T140134,80-05&lt;/datetime&gt;&lt;datetime&gt;20031229T140134,86-05&lt;/datetime&gt;&lt;datetime<break
/>&gt;20031229T140135,18-05&lt;/datetime&gt;&lt;datetime&gt;20031229T140137,07-05&lt;/datetime&gt;&lt;datetime<break
/>&gt;20031229T140137,13-05&lt;/datetime&gt;&lt;datetime&gt;20031229T140137,49-05&lt;/datetime&gt;&lt;datetime<break
/>&gt;20031229T140139,06-05&lt;/datetime&gt;&lt;datetime&gt;20031229T140139,12-05&lt;/datetime&gt;&lt;datetime<break
/>&gt;20031229T140139,46-05&lt;/datetime&gt;&lt;datetime&gt;20031229T140141,33-05&lt;/datetime&gt;&lt;datetime<break
/>&gt;20031229T140141,39-05&lt;/datetime&gt;&lt;datetime&gt;20031229T140141,72-05&lt;/datetime&gt;&lt;datetime<break
/>&gt;20031229T140145,12-05&lt;/datetime&gt;&lt;datetime&gt;20031229T140145,18-05&lt;/datetime&gt;&lt;datetime<break
/>&gt;20031229T140145,52-05&lt;/datetime&gt;&lt;datetime&gt;20031229T140146,97-05&lt;/datetime&gt;&lt;datetime<break
/>&gt;20031229T140147,04-05&lt;/datetime&gt;&lt;datetime&gt;20031229T140147,38-05&lt;/datetime&gt;&lt;datetime<break
/>&gt;20031229T140149,35-05&lt;/datetime&gt;&lt;datetime&gt;20031229T140149,42-05&lt;/datetime&gt;&lt;datetime<break
/>&gt;20031229T140149,76-05&lt;/datetime&gt;&lt;datetime&gt;20031229T140151,37-05&lt;/datetime&gt;&lt;datetime<break
/>&gt;20031229T140151,45-05&lt;/datetime&gt;&lt;datetime&gt;20031229T140151,81-05&lt;/datetime&gt;&lt;datetime<break
/>&gt;20031229T140159,02-05&lt;/datetime&gt;&lt;datetime&gt;20031229T140159,10-05&lt;/datetime&gt;&lt;datetime<break
/>&gt;20031229T140159,48-05&lt;/datetime&gt;&lt;datetime&gt;20031229T140200,83-05&lt;/datetime&gt;&lt;datetime<break
/>&gt;20031229T140200,92-05&lt;/datetime&gt;&lt;datetime&gt;20031229T140201,28-05&lt;/datetime&gt;&lt;datetime<break
/>&gt;20031229T140202,55-05&lt;/datetime&gt;&lt;datetime&gt;20031229T140202,63-05&lt;/datetime&gt;&lt;datetime<break
/>&gt;20031229T140203,00-05&lt;/datetime&gt;&lt;datetime&gt;20031229T140205,43-05&lt;/datetime&gt;&lt;datetime<break
/>&gt;20031229T140205,53-05&lt;/datetime&gt;&lt;datetime&gt;20031229T140205,91-05&lt;/datetime&gt;&lt;datetime<break
/>&gt;20031229T140207,40-05&lt;/datetime&gt;&lt;datetime&gt;20031229T140207,53-05&lt;/datetime&gt;&lt;datetime<break
/>&gt;20031229T140207,91-05&lt;/datetime&gt;&lt;datetime&gt;20031229T140209,90-05&lt;/datetime&gt;&lt;datetime<break
/>&gt;20031229T140210,00-05&lt;/datetime&gt;&lt;datetime&gt;20031229T140210,39-05&lt;/datetime&gt;&lt;datetime<break
/>&gt;20031229T140211,78-05&lt;/datetime&gt;&lt;datetime&gt;20031229T140211,89-05&lt;/datetime&gt;&lt;datetime<break
/>&gt;20031229T140212,28-05&lt;/datetime&gt;&lt;datetime&gt;20031229T140213,56-05&lt;/datetime&gt;&lt;datetime<break
/>&gt;20031229T140213,67-05&lt;/datetime&gt;&lt;datetime&gt;20031229T140214,08-05&lt;/datetime&gt;&lt;datetime<break
/>&gt;20031229T140215,59-05&lt;/datetime&gt;&lt;datetime&gt;20031229T140215,71-05&lt;/datetime&gt;&lt;datetime<break
/>&gt;20031229T140216,12-05&lt;/datetime&gt;&lt;datetime&gt;20031229T140217,81-05&lt;/datetime&gt;&lt;datetime<break
/>&gt;20031229T140217,96-05&lt;/datetime&gt;&lt;datetime&gt;20031229T140218,38-05&lt;/datetime&gt;&lt;datetime<break
/>&gt;20031229T140220,64-05&lt;/datetime&gt;&lt;datetime&gt;20031229T140220,77-05&lt;/datetime&gt;&lt;datetime<break
/>&gt;20031229T140221,19-05&lt;/datetime&gt;&lt;datetime&gt;20031229T140223,75-05&lt;/datetime&gt;&lt;datetime<break
/>&gt;20031229T140223,89-05&lt;/datetime&gt;&lt;datetime&gt;20031229T140224,31-05&lt;/datetime&gt;&lt;datetime<break
/>&gt;20031229T140225,90-05&lt;/datetime&gt;&lt;datetime&gt;20031229T140226,05-05&lt;/datetime&gt;&lt;datetime<break
/>&gt;20031229T140226,48-05&lt;/datetime&gt;&lt;datetime&gt;20031229T140227,78-05&lt;/datetime&gt;&lt;datetime<break
/>&gt;20031229T140227,95-05&lt;/datetime&gt;&lt;datetime&gt;20031229T140228,39-05&lt;/datetime&gt;&lt;datetime<break
/>&gt;20031229T140229,83-05&lt;/datetime&gt;&lt;datetime&gt;20031229T140230,01-05&lt;/datetime&gt;&lt;datetime<break
/>&gt;20031229T140230,45-05&lt;/datetime&gt;&lt;datetime&gt;20031229T140231,80-05&lt;/datetime&gt;&lt;datetime<break
/>&gt;20031229T140231,98-05&lt;/datetime&gt;&lt;datetime&gt;20031229T140232,43-05&lt;/datetime&gt;&lt;datetime<break
/>&gt;20031229T140234,91-05&lt;/datetime&gt;&lt;datetime&gt;20031229T140235,08-05&lt;/datetime&gt;&lt;datetime<break
/>&gt;20031229T140235,54-05&lt;/datetime&gt;&lt;datetime&gt;20031229T140236,85-05&lt;/datetime&gt;&lt;datetime<break
/>&gt;20031229T140237,04-05&lt;/datetime&gt;&lt;datetime&gt;20031229T140237,51-05&lt;/datetime&gt;&lt;datetime<break
/>&gt;20031229T140238,86-05&lt;/datetime&gt;&lt;datetime&gt;20031229T140239,05-05&lt;/datetime&gt;&lt;datetime<break
/>&gt;20031229T140239,54-05&lt;/datetime&gt;&lt;datetime&gt;20031229T140240,82-05&lt;/datetime&gt;&lt;datetime<break
/>&gt;20031229T140241,03-05&lt;/datetime&gt;&lt;datetime&gt;20031229T140241,51-05&lt;/datetime&gt;&lt;datetime<break
/>&gt;20031229T140242,78-05&lt;/datetime&gt;&lt;datetime&gt;20031229T140243,08-05&lt;/datetime&gt;&lt;datetime<break
/>&gt;20031229T140243,57-05&lt;/datetime&gt;&lt;datetime&gt;20031229T140244,82-05&lt;/datetime&gt;&lt;datetime<break
/>&gt;20031229T140245,06-05&lt;/datetime&gt;&lt;datetime&gt;20031229T140245,55-05&lt;/datetime&gt;&lt;datetime<break
/>&gt;20031229T140246,84-05&lt;/datetime&gt;&lt;datetime&gt;20031229T140247,11-05&lt;/datetime&gt;&lt;datetime<break
/>&gt;20031229T140247,61-05&lt;/datetime&gt;&lt;datetime&gt;20031229T140248,69-05&lt;/datetime&gt;&lt;datetime<break
/>&gt;20031229T140248,95-05&lt;/datetime&gt;&lt;datetime&gt;20031229T140249,46-05&lt;/datetime&gt;&lt;datetime<break
/>&gt;20031229T140252,98-05&lt;/datetime&gt;&lt;datetime&gt;20031229T140253,25-05&lt;/datetime&gt;&lt;datetime<break
/>&gt;20031229T140253,77-05&lt;/datetime&gt;&lt;datetime&gt;20031229T140255,14-05&lt;/datetime&gt;&lt;datetime<break
/>&gt;20031229T140255,39-05&lt;/datetime&gt;&lt;datetime&gt;20031229T140255,91-05&lt;/datetime&gt;&lt;datetime<break
/>&gt;20031229T140257,12-05&lt;/datetime&gt;&lt;datetime&gt;20031229T140257,39-05&lt;/datetime&gt;&lt;datetime<break
/>&gt;20031229T140257,94-05&lt;/datetime&gt;&lt;datetime&gt;20031229T140259,23-05&lt;/datetime&gt;&lt;datetime<break
/>&gt;20031229T140259,52-05&lt;/datetime&gt;&lt;datetime&gt;20031229T140300,06-05&lt;/datetime&gt;&lt;datetime<break
/>&gt;20031229T140301,22-05&lt;/datetime&gt;&lt;datetime&gt;20031229T140301,49-05&lt;/datetime&gt;&lt;datetime<break
/>&gt;20031229T140302,04-05&lt;/datetime&gt;&lt;datetime&gt;20031229T140302,99-05&lt;/datetime&gt;&lt;datetime<break
/>&gt;20031229T140303,29-05&lt;/datetime&gt;&lt;datetime&gt;20031229T140303,84-05&lt;/datetime&gt;&lt;datetime<break
/>&gt;20031229T140305,00-05&lt;/datetime&gt;&lt;datetime&gt;20031229T140305,31-05&lt;/datetime&gt;&lt;datetime<break
/>&gt;20031229T140305,88-05&lt;/datetime&gt;&lt;datetime&gt;20031229T140306,99-05&lt;/datetime&gt;&lt;datetime<break
/>&gt;20031229T140307,31-05&lt;/datetime&gt;&lt;/revisions&gt;<break/>&lt;item name='History' sign='true' seal='true'&gt;&lt;richtext&gt;<break
/>&lt;par&gt;&lt;doclink showborder='true' document='14FC7F4F97D2241185256E0B005B44F4'<break
/> view='0C1AFB9603156C8985256E0B005A5D7D' database='85256E0B005A5D46'&gt;12/29/2003 12:34:19 PM The time you won your town the race &lt;/doclink&gt;&lt;/par&gt;<break
/>&lt;pardef id='1'/&gt;<break/>&lt;par def='1'&gt;&lt;doclink showborder='true' document='0CD16B7D45D2825E85256E0B005B4BFB'<break
/> view='0C1AFB9603156C8985256E0B005A5D7D' database='85256E0B005A5D46'&gt;12/29/2003 12:34:20 PM We chaired you through the market-place;&lt;/doclink&gt;&lt;/par&gt;<break
/>&lt;par&gt;&lt;doclink showborder='true' document='1DA382FA70DBF40C85256E0B005B4C64'<break
/> view='0C1AFB9603156C8985256E0B005A5D7D' database='85256E0B005A5D46'&gt;12/29/2003 12:34:21 PM Man and boy stood cheering by, &lt;/doclink&gt;&lt;/par&gt;<break
/>&lt;par&gt;&lt;doclink showborder='true' document='78EC5E344DEA0F4885256E0B005B4C7F'<break
/> view='0C1AFB9603156C8985256E0B005A5D7D' database='85256E0B005A5D46'&gt;12/29/2003 12:34:23 PM And home we brought you shoulder-high.&lt;/doclink&gt;&lt;/par&gt;<break
/>&lt;par&gt;&lt;doclink showborder='true' document='E3BBC156A0224C6785256E0B005B4C9D'<break
/> view='0C1AFB9603156C8985256E0B005A5D7D' database='85256E0B005A5D46'&gt;12/29/2003 12:49:49 PM To-day, the road all runners come,&lt;/doclink&gt;&lt;/par&gt;<break
/>&lt;par&gt;&lt;doclink showborder='true' document='14FC7F4F97D2241185256E0B005B44F4'<break
/> view='0C1AFB9603156C8985256E0B005A5D7D' database='85256E0B005A5D46'&gt;12/29/2003 2:00:16 PM The time you won your town the race &lt;/doclink&gt;&lt;/par&gt;<break
/>&lt;par&gt;&lt;doclink showborder='true' document='14FC7F4F97D2241185256E0B005B44F4'<break
/> view='0C1AFB9603156C8985256E0B005A5D7D' database='85256E0B005A5D46'&gt;12/29/2003 2:00:18 PM The time you won your town the race &lt;/doclink&gt;&lt;/par&gt;<break
/>&lt;par&gt;&lt;doclink showborder='true' document='14FC7F4F97D2241185256E0B005B44F4'<break
/> view='0C1AFB9603156C8985256E0B005A5D7D' database='85256E0B005A5D46'&gt;12/29/2003 2:00:19 PM The time you won your town the race &lt;/doclink&gt;&lt;/par&gt;<break
/>&lt;par&gt;&lt;doclink showborder='true' document='14FC7F4F97D2241185256E0B005B44F4'<break
/> view='0C1AFB9603156C8985256E0B005A5D7D' database='85256E0B005A5D46'&gt;12/29/2003 2:00:21 PM The time you won your town the race &lt;/doclink&gt;&lt;/par&gt;<break
/>&lt;par&gt;&lt;doclink showborder='true' document='14FC7F4F97D2241185256E0B005B44F4'<break
/> view='0C1AFB9603156C8985256E0B005A5D7D' database='85256E0B005A5D46'&gt;12/29/2003 2:00:22 PM The time you won your town the race &lt;/doclink&gt;&lt;/par&gt;<break
/>&lt;par&gt;&lt;doclink showborder='true' document='14FC7F4F97D2241185256E0B005B44F4'<break
/> view='0C1AFB9603156C8985256E0B005A5D7D' database='85256E0B005A5D46'&gt;12/29/2003 2:00:23 PM The time you won your town the race &lt;/doclink&gt;&lt;/par&gt;<break
/>&lt;par&gt;&lt;doclink showborder='true' document='14FC7F4F97D2241185256E0B005B44F4'<break
/> view='0C1AFB9603156C8985256E0B005A5D7D' database='85256E0B005A5D46'&gt;12/29/2003 2:00:24 PM The time you won your town the race &lt;/doclink&gt;&lt;/par&gt;<break
/>&lt;par&gt;&lt;doclink showborder='true' document='14FC7F4F97D2241185256E0B005B44F4'<break
/> view='0C1AFB9603156C8985256E0B005A5D7D' database='85256E0B005A5D46'&gt;12/29/2003 2:00:25 PM The time you won your town the race &lt;/doclink&gt;&lt;/par&gt;</par>
<par><break/>&lt;par&gt;&lt;doclink showborder='true' document='14FC7F4F97D2241185256E0B005B44F4'<break
/> view='0C1AFB9603156C8985256E0B005A5D7D' database='85256E0B005A5D46'&gt;12/29/2003 2:00:29 PM The time you won your town the race &lt;/doclink&gt;&lt;/par&gt;<break
/>&lt;par&gt;&lt;doclink showborder='true' document='14FC7F4F97D2241185256E0B005B44F4'<break
/> view='0C1AFB9603156C8985256E0B005A5D7D' database='85256E0B005A5D46'&gt;12/29/2003 2:00:31 PM The time you won your town the race &lt;/doclink&gt;&lt;/par&gt;<break
/>&lt;par&gt;&lt;doclink showborder='true' document='14FC7F4F97D2241185256E0B005B44F4'<break
/> view='0C1AFB9603156C8985256E0B005A5D7D' database='85256E0B005A5D46'&gt;12/29/2003 2:00:32 PM The time you won your town the race &lt;/doclink&gt;&lt;/par&gt;<break
/>&lt;par&gt;&lt;doclink showborder='true' document='14FC7F4F97D2241185256E0B005B44F4'<break
/> view='0C1AFB9603156C8985256E0B005A5D7D' database='85256E0B005A5D46'&gt;12/29/2003 2:00:33 PM The time you won your town the race &lt;/doclink&gt;&lt;/par&gt;<break
/>&lt;par&gt;&lt;doclink showborder='true' document='14FC7F4F97D2241185256E0B005B44F4'<break
/> view='0C1AFB9603156C8985256E0B005A5D7D' database='85256E0B005A5D46'&gt;12/29/2003 2:00:34 PM The time you won your town the race &lt;/doclink&gt;&lt;/par&gt;<break
/>&lt;par&gt;&lt;doclink showborder='true' document='14FC7F4F97D2241185256E0B005B44F4'<break
/> view='0C1AFB9603156C8985256E0B005A5D7D' database='85256E0B005A5D46'&gt;12/29/2003 2:00:36 PM The time you won your town the race &lt;/doclink&gt;&lt;/par&gt;<break
/>&lt;par&gt;&lt;doclink showborder='true' document='14FC7F4F97D2241185256E0B005B44F4'<break
/> view='0C1AFB9603156C8985256E0B005A5D7D' database='85256E0B005A5D46'&gt;12/29/2003 2:01:34 PM The time you won your town the race &lt;/doclink&gt;&lt;/par&gt;<break
/>&lt;par&gt;&lt;doclink showborder='true' document='0CD16B7D45D2825E85256E0B005B4BFB'<break
/> view='0C1AFB9603156C8985256E0B005A5D7D' database='85256E0B005A5D46'&gt;12/29/2003 2:01:36 PM We chaired you through the market-place;&lt;/doclink&gt;&lt;/par&gt;<break
/>&lt;par&gt;&lt;doclink showborder='true' document='1DA382FA70DBF40C85256E0B005B4C64'<break
/> view='0C1AFB9603156C8985256E0B005A5D7D' database='85256E0B005A5D46'&gt;12/29/2003 2:01:39 PM Man and boy stood cheering by, &lt;/doclink&gt;&lt;/par&gt;<break
/>&lt;par&gt;&lt;doclink showborder='true' document='78EC5E344DEA0F4885256E0B005B4C7F'<break
/> view='0C1AFB9603156C8985256E0B005A5D7D' database='85256E0B005A5D46'&gt;12/29/2003 2:01:41 PM And home we brought you shoulder-high.&lt;/doclink&gt;&lt;/par&gt;<break
/>&lt;par&gt;&lt;doclink showborder='true' document='E3BBC156A0224C6785256E0B005B4C9D'<break
/> view='0C1AFB9603156C8985256E0B005A5D7D' database='85256E0B005A5D46'&gt;12/29/2003 2:01:45 PM To-day, the road all runners come,&lt;/doclink&gt;&lt;/par&gt;<break
/>&lt;par&gt;&lt;doclink showborder='true' document='D29B550E6031431085256E0B005B4CB9'<break
/> view='0C1AFB9603156C8985256E0B005A5D7D' database='85256E0B005A5D46'&gt;12/29/2003 2:01:47 PM Shoulder-high we bring you home,&lt;/doclink&gt;&lt;/par&gt;<break
/>&lt;par&gt;&lt;doclink showborder='true' document='CD44C149C74C295D85256E0B005B4CE0'<break
/> view='0C1AFB9603156C8985256E0B005A5D7D' database='85256E0B005A5D46'&gt;12/29/2003 2:01:49 PM And set you at your threshold down,&lt;/doclink&gt;&lt;/par&gt;<break
/>&lt;par&gt;&lt;doclink showborder='true' document='A54C2AEE23EFCE9485256E0B005B4CFA'<break
/> view='0C1AFB9603156C8985256E0B005A5D7D' database='85256E0B005A5D46'&gt;12/29/2003 2:01:51 PM Townsman of a stiller town.&lt;/doclink&gt;&lt;/par&gt;<break
/>&lt;par&gt;&lt;doclink showborder='true' document='14FC7F4F97D2241185256E0B005B44F4'<break
/> view='0C1AFB9603156C8985256E0B005A5D7D' database='85256E0B005A5D46'&gt;12/29/2003 2:01:59 PM The time you won your town the race &lt;/doclink&gt;&lt;/par&gt;<break
/>&lt;par&gt;&lt;doclink showborder='true' document='0CD16B7D45D2825E85256E0B005B4BFB'<break
/> view='0C1AFB9603156C8985256E0B005A5D7D' database='85256E0B005A5D46'&gt;12/29/2003 2:02:00 PM We chaired you through the market-place;&lt;/doclink&gt;&lt;/par&gt;<break
/>&lt;par&gt;&lt;doclink showborder='true' document='1DA382FA70DBF40C85256E0B005B4C64'<break
/> view='0C1AFB9603156C8985256E0B005A5D7D' database='85256E0B005A5D46'&gt;12/29/2003 2:02:02 PM Man and boy stood cheering by, &lt;/doclink&gt;&lt;/par&gt;<break
/>&lt;par&gt;&lt;doclink showborder='true' document='78EC5E344DEA0F4885256E0B005B4C7F'<break
/> view='0C1AFB9603156C8985256E0B005A5D7D' database='85256E0B005A5D46'&gt;12/29/2003 2:02:05 PM And home we brought you shoulder-high.&lt;/doclink&gt;&lt;/par&gt;<break
/>&lt;par&gt;&lt;doclink showborder='true' document='E3BBC156A0224C6785256E0B005B4C9D'<break
/> view='0C1AFB9603156C8985256E0B005A5D7D' database='85256E0B005A5D46'&gt;12/29/2003 2:02:07 PM To-day, the road all runners come,&lt;/doclink&gt;&lt;/par&gt;<break
/>&lt;par&gt;&lt;doclink showborder='true' document='D29B550E6031431085256E0B005B4CB9'<break
/> view='0C1AFB9603156C8985256E0B005A5D7D' database='85256E0B005A5D46'&gt;12/29/2003 2:02:09 PM Shoulder-high we bring you home,&lt;/doclink&gt;&lt;/par&gt;<break
/>&lt;par&gt;&lt;doclink showborder='true' document='CD44C149C74C295D85256E0B005B4CE0'<break
/> view='0C1AFB9603156C8985256E0B005A5D7D' database='85256E0B005A5D46'&gt;12/29/2003 2:02:11 PM And set you at your threshold down,&lt;/doclink&gt;&lt;/par&gt;<break
/>&lt;par&gt;&lt;doclink showborder='true' document='A54C2AEE23EFCE9485256E0B005B4CFA'<break
/> view='0C1AFB9603156C8985256E0B005A5D7D' database='85256E0B005A5D46'&gt;12/29/2003 2:02:13 PM Townsman of a stiller town.&lt;/doclink&gt;&lt;/par&gt;<break
/>&lt;par&gt;&lt;doclink showborder='true' document='14FC7F4F97D2241185256E0B005B44F4'<break
/> view='0C1AFB9603156C8985256E0B005A5D7D' database='85256E0B005A5D46'&gt;12/29/2003 2:02:15 PM The time you won your town the race &lt;/doclink&gt;&lt;/par&gt;<break
/>&lt;par&gt;&lt;doclink showborder='true' document='0CD16B7D45D2825E85256E0B005B4BFB'<break
/> view='0C1AFB9603156C8985256E0B005A5D7D' database='85256E0B005A5D46'&gt;12/29/2003 2:02:17 PM We chaired you through the market-place;&lt;/doclink&gt;&lt;/par&gt;<break
/>&lt;par&gt;&lt;doclink showborder='true' document='1DA382FA70DBF40C85256E0B005B4C64'<break
/> view='0C1AFB9603156C8985256E0B005A5D7D' database='85256E0B005A5D46'&gt;12/29/2003 2:02:20 PM Man and boy stood cheering by, &lt;/doclink&gt;&lt;/par&gt;<break
/>&lt;par&gt;&lt;doclink showborder='true' document='78EC5E344DEA0F4885256E0B005B4C7F'<break
/> view='0C1AFB9603156C8985256E0B005A5D7D' database='85256E0B005A5D46'&gt;12/29/2003 2:02:23 PM And home we brought you shoulder-high.&lt;/doclink&gt;&lt;/par&gt;<break
/>&lt;par&gt;&lt;doclink showborder='true' document='E3BBC156A0224C6785256E0B005B4C9D'<break
/> view='0C1AFB9603156C8985256E0B005A5D7D' database='85256E0B005A5D46'&gt;12/29/2003 2:02:25 PM To-day, the road all runners come,&lt;/doclink&gt;&lt;/par&gt;<break
/>&lt;par&gt;&lt;doclink showborder='true' document='D29B550E6031431085256E0B005B4CB9'<break
/> view='0C1AFB9603156C8985256E0B005A5D7D' database='85256E0B005A5D46'&gt;12/29/2003 2:02:27 PM Shoulder-high we bring you home,&lt;/doclink&gt;&lt;/par&gt;<break
/>&lt;par&gt;&lt;doclink showborder='true' document='CD44C149C74C295D85256E0B005B4CE0'<break
/> view='0C1AFB9603156C8985256E0B005A5D7D' database='85256E0B005A5D46'&gt;12/29/2003 2:02:29 PM And set you at your threshold down,&lt;/doclink&gt;&lt;/par&gt;<break
/>&lt;par&gt;&lt;doclink showborder='true' document='A54C2AEE23EFCE9485256E0B005B4CFA'<break
/> view='0C1AFB9603156C8985256E0B005A5D7D' database='85256E0B005A5D46'&gt;12/29/2003 2:02:31 PM Townsman of a stiller town.&lt;/doclink&gt;&lt;/par&gt;<break
/>&lt;par&gt;&lt;doclink showborder='true' document='14FC7F4F97D2241185256E0B005B44F4'<break
/> view='0C1AFB9603156C8985256E0B005A5D7D' database='85256E0B005A5D46'&gt;12/29/2003 2:02:34 PM The time you won your town the race &lt;/doclink&gt;&lt;/par&gt;<break
/>&lt;par&gt;&lt;doclink showborder='true' document='0CD16B7D45D2825E85256E0B005B4BFB'<break
/> view='0C1AFB9603156C8985256E0B005A5D7D' database='85256E0B005A5D46'&gt;12/29/2003 2:02:36 PM We chaired you through the market-place;&lt;/doclink&gt;&lt;/par&gt;<break
/>&lt;par&gt;&lt;doclink showborder='true' document='1DA382FA70DBF40C85256E0B005B4C64'<break
/> view='0C1AFB9603156C8985256E0B005A5D7D' database='85256E0B005A5D46'&gt;12/29/2003 2:02:38 PM Man and boy stood cheering by, &lt;/doclink&gt;&lt;/par&gt;<break
/>&lt;par&gt;&lt;doclink showborder='true' document='78EC5E344DEA0F4885256E0B005B4C7F'<break
/> view='0C1AFB9603156C8985256E0B005A5D7D' database='85256E0B005A5D46'&gt;12/29/2003 2:02:40 PM And home we brought you shoulder-high.&lt;/doclink&gt;&lt;/par&gt;<break
/>&lt;par&gt;&lt;doclink showborder='true' document='E3BBC156A0224C6785256E0B005B4C9D'<break
/> view='0C1AFB9603156C8985256E0B005A5D7D' database='85256E0B005A5D46'&gt;12/29/2003 2:02:42 PM To-day, the road all runners come,&lt;/doclink&gt;&lt;/par&gt;<break
/>&lt;par&gt;&lt;doclink showborder='true' document='D29B550E6031431085256E0B005B4CB9'<break
/> view='0C1AFB9603156C8985256E0B005A5D7D' database='85256E0B005A5D46'&gt;12/29/2003 2:02:44 PM Shoulder-high we bring you home,&lt;/doclink&gt;&lt;/par&gt;<break
/>&lt;par&gt;&lt;doclink showborder='true' document='CD44C149C74C295D85256E0B005B4CE0'<break
/> view='0C1AFB9603156C8985256E0B005A5D7D' database='85256E0B005A5D46'&gt;12/29/2003 2:02:46 PM And set you at your threshold down,&lt;/doclink&gt;&lt;/par&gt;<break
/>&lt;par&gt;&lt;doclink showborder='true' document='A54C2AEE23EFCE9485256E0B005B4CFA'<break
/> view='0C1AFB9603156C8985256E0B005A5D7D' database='85256E0B005A5D46'&gt;12/29/2003 2:02:48 PM Townsman of a stiller town.&lt;/doclink&gt;&lt;/par&gt;<break
/>&lt;par&gt;&lt;doclink showborder='true' document='14FC7F4F97D2241185256E0B005B44F4'<break
/> view='0C1AFB9603156C8985256E0B005A5D7D' database='85256E0B005A5D46'&gt;12/29/2003 2:02:53 PM The time you won your town the race &lt;/doclink&gt;&lt;/par&gt;<break
/>&lt;par&gt;&lt;doclink showborder='true' document='0CD16B7D45D2825E85256E0B005B4BFB'<break
/> view='0C1AFB9603156C8985256E0B005A5D7D' database='85256E0B005A5D46'&gt;12/29/2003 2:02:55 PM We chaired you through the market-place;&lt;/doclink&gt;&lt;/par&gt;<break
/>&lt;par&gt;&lt;doclink showborder='true' document='1DA382FA70DBF40C85256E0B005B4C64'<break
/> view='0C1AFB9603156C8985256E0B005A5D7D' database='85256E0B005A5D46'&gt;12/29/2003 2:02:57 PM Man and boy stood cheering by, &lt;/doclink&gt;&lt;/par&gt;</par>
<par><break/>&lt;par&gt;&lt;doclink showborder='true' document='78EC5E344DEA0F4885256E0B005B4C7F'<break
/> view='0C1AFB9603156C8985256E0B005A5D7D' database='85256E0B005A5D46'&gt;12/29/2003 2:02:59 PM And home we brought you shoulder-high.&lt;/doclink&gt;&lt;/par&gt;<break
/>&lt;par&gt;&lt;doclink showborder='true' document='E3BBC156A0224C6785256E0B005B4C9D'<break
/> view='0C1AFB9603156C8985256E0B005A5D7D' database='85256E0B005A5D46'&gt;12/29/2003 2:03:01 PM To-day, the road all runners come,&lt;/doclink&gt;&lt;/par&gt;<break
/>&lt;par&gt;&lt;doclink showborder='true' document='D29B550E6031431085256E0B005B4CB9'<break
/> view='0C1AFB9603156C8985256E0B005A5D7D' database='85256E0B005A5D46'&gt;12/29/2003 2:03:03 PM Shoulder-high we bring you home,&lt;/doclink&gt;&lt;/par&gt;<break
/>&lt;par&gt;&lt;doclink showborder='true' document='CD44C149C74C295D85256E0B005B4CE0'<break
/> view='0C1AFB9603156C8985256E0B005A5D7D' database='85256E0B005A5D46'&gt;12/29/2003 2:03:05 PM And set you at your threshold down,&lt;/doclink&gt;&lt;/par&gt;<break
/>&lt;par&gt;&lt;doclink showborder='true' document='A54C2AEE23EFCE9485256E0B005B4CFA'<break
/> view='0C1AFB9603156C8985256E0B005A5D7D' database='85256E0B005A5D46'&gt;12/29/2003 2:03:07 PM Townsman of a stiller town.&lt;/doclink&gt;&lt;/par&gt;<break
/>&lt;par/&gt;&lt;/richtext&gt;&lt;/item&gt;<break/>&lt;item name='$EncryptionStatus'&gt;&lt;textlist&gt;&lt;text&gt;0&lt;/text&gt;&lt;/textlist&gt;&lt;/item&gt;<break
/>&lt;item name='$SignatureStatus'&gt;&lt;textlist&gt;&lt;text&gt;0&lt;/text&gt;&lt;/textlist&gt;&lt;/item&gt;<break
/>&lt;item name='UserName' names='true'&gt;&lt;textlist&gt;&lt;text&gt;CN=Thomas Kennedy/O=Towers Perrin&lt;/text&gt;&lt;/textlist&gt;&lt;/item&gt;&lt;/document&gt;<break
/>Here is a link to the original document. <doclink document='5F53E29B324D795385256E0B006883C7'
view='0C1AFB9603156C8985256E0B005A5D7D' database='85256E0B005A5D46'/></par></richtext></item></document></database>







Probably a bug in NotesDXLImporter:... (~Wei Frojipyman... 29.Dec.03)
. . RE: Probably a bug in NotesDXLImpor... (~Tate Quetgerob... 29.Dec.03)
. . . . RE: Probably a bug in NotesDXLImpor... (~Wei Frojipyman... 30.Dec.03)
. . . . . . To report, or not to report. That's... (~Bill Quetfooch... 30.Dec.03)
. . . . . . . . RE: To report, or not to report. Th... (~Sanjay Quettum... 30.Dec.03)
. . . . . . . . . . And internationally? (~Bill Quetfooch... 1.Jan.04)
. . RE: Probably a bug in NotesDXLImpor... (~Kirk Elreterod... 30.Dec.03)
. . . . RE: Probably a bug in NotesDXLImpor... (~Wei Frojipyman... 30.Dec.03)
. . . . . . RE: Probably a bug in NotesDXLImpor... (~Kirk Elreterod... 30.Dec.03)





  Document options
Print this pagePrint this page

 Search this forum

  Forum views and search
Date (threaded)
Date (flat)
With excerpt
Category
Platform
Release
Advanced search

 RSS feedsRSS
All forum posts RSS
All main topics RSS